[% if count($orderlist) > 0 %]
[%forlist from=$orderlist key=i%]
-
订单号:
[%$orderlist[i].ordersn%]
订单时间:
[%$orderlist[i].addtime%]
订单金额:
¥[%$orderlist[i].orderamount%]
-
订单状态:
[%if $orderlist[i].ordertype==1 %]未支付[%/if%]
[%if $orderlist[i].ordertype==2 %]正在处理中[%/if%]
[%if $orderlist[i].ordertype==0 %]已取消[%/if%]
[%if $orderlist[i].ordertype==3 %]已退款[%/if%]
[%if $orderlist[i].ordertype==4 %]已退货[%/if%]
[%if $orderlist[i].ordertype==5 %]已发货[%/if%]
[%if $orderlist[i].ordertype==6 %]已完成[%/if%]
查看
[%if $orderlist[i].ordertype==1%]
取消订单
[%/if%]
[%/forlist%]
[%else%]
您还没有订单!
[%/if%]